I have a part of an XML file that looks like this:
<paymentTypes><paymentType>type1</paymentType><paymentType>type2</paymentType><paymentType>type3</paymentType><paymentType>type4</paymentType></paymentTypes>
The thing is that I want to get it via ajax jQuery, but if I try this:
var paymentTypes = $(xml).find("paymentTypes").text()
the output will be type1type2type3type4.
What function should I use(built-in or should I write it) in order to get the results on separate lines?
Mark Devid
06-Nov-2014u can iterate over the result append to new string